| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | 'use strict' |
||
| 18 | describe('out', () => { |
||
| 19 | |||
| 20 | beforeEach((done) => { |
||
| 21 | this.input = JSON.parse(JSON.stringify(fixtureInput)) |
||
| 22 | done() |
||
| 23 | }) |
||
| 24 | |||
| 25 | afterEach((done) => { |
||
| 26 | delete this.input |
||
| 27 | done() |
||
| 28 | }) |
||
| 29 | |||
| 30 | describe('out', () => { |
||
| 31 | it('should not throw an error', (done) => { |
||
| 32 | out(this.input, (error) => { |
||
| 33 | expect(error).to.be.not.exist |
||
|
|
|||
| 34 | done() |
||
| 35 | }) |
||
| 36 | |||
| 37 | }) |
||
| 38 | |||
| 39 | }) |
||
| 40 | }) |
||
| 41 |